Platform Explorer / Nuxeo Platform 2023.10

Extension point layouttypes

Contribution Descriptors

  • Class: org.nuxeo.ecm.platform.forms.layout.descriptors.LayoutTypeDescriptor

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-platform-forms-layout-client-2023.10.13.jar /OSGI-INF/layouts-dev-contrib.xml
    <extension point="layouttypes" target="org.nuxeo.ecm.platform.forms.layout.WebLayoutManager">
    
        <layoutType name="devLayout">
          <templates>
            <template mode="any">
              /widgets/dev/layouts/dev_layout_template.xhtml
            </template>
          </templates>
        </layoutType>
    
      </extension>
  • nuxeo-platform-webapp-base-2023.10.13.jar /OSGI-INF/layouttypes-contrib.xml
    <extension point="layouttypes" target="org.nuxeo.ecm.platform.forms.layout.WebLayoutManager">
    
        <layoutType name="listingTable">
          <templates>
            <template mode="any">
              /layouts/layout_listing_ajax_template.xhtml
            </template>
            <template mode="csv">
              /layouts/layout_listing_csv_template.xhtml
            </template>
            <template mode="pdf">
              /layouts/layout_listing_pdf_template.xhtml
            </template>
            <template mode="edit_columns">
              /layouts/layout_column_selection_template.xhtml
            </template>
            <template mode="edit_sort_infos">
              /layouts/layout_sort_infos_template.xhtml
            </template>
            <template mode="edit_sort_infos_map">
              /layouts/layout_sort_infos_template.xhtml
            </template>
          </templates>
          <configuration>
            <title>Layout listing displayed as table.</title>
            <properties>
              <defaultValues mode="any">
                <property name="showListingHeader">true</property>
                <property name="showRowEvenOddClass">true</property>
              </defaultValues>
            </properties>
          </configuration>
        </layoutType>
    
        <layoutType name="listingThumbnail">
          <templates>
            <template mode="any">
              /layouts/layout_listing_thumbnail_template.xhtml
            </template>
            <template mode="csv">
              /layouts/layout_listing_csv_template.xhtml
            </template>
            <template mode="pdf">
              /layouts/layout_listing_pdf_template.xhtml
            </template>
            <template mode="edit_columns">
              /layouts/layout_column_selection_template.xhtml
            </template>
            <template mode="edit_sort_infos">
              /layouts/layout_sort_infos_template.xhtml
            </template>
            <template mode="edit_sort_infos_map">
              /layouts/layout_sort_infos_template.xhtml
            </template>
          </templates>
          <configuration>
            <title>Layout listing displayed as thumbnail.</title>
            <description>
              <p>This layout type displays the layout in a box style using another layout for the box heading.</p>
            </description>
            <properties>
              <defaultValues mode="any">
                <property name="display">block</property>
                <property name="thumbnailHeaderLayout">listing_thumbnail_header</property>
                <property name="before_template">/layouts/layout_listing_thumbnail_infoview.xhtml</property>
              </defaultValues>
            </properties>
          </configuration>
        </layoutType>
    
      </extension>